home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / toolbar / tooltips.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-07  |  1.4 KB  |  47 lines

  1. VERSION 2.00
  2. Begin Form frmHelp 
  3.    BackColor       =   &H8000000F&
  4.    BorderStyle     =   1  'Fixed Single
  5.    ClientHeight    =   495
  6.    ClientLeft      =   1095
  7.    ClientTop       =   1485
  8.    ClientWidth     =   2340
  9.    ControlBox      =   0   'False
  10.    Height          =   900
  11.    HelpContextID   =   3
  12.    Left            =   1035
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   495
  17.    ScaleWidth      =   2340
  18.    Top             =   1140
  19.    Width           =   2460
  20.    Begin Label Label1 
  21.       AutoSize        =   -1  'True
  22.       BackColor       =   &H8000000F&
  23.       Caption         =   "Label1"
  24.       FontBold        =   0   'False
  25.       FontItalic      =   0   'False
  26.       FontName        =   "MS Sans Serif"
  27.       FontSize        =   8.25
  28.       FontStrikethru  =   0   'False
  29.       FontUnderline   =   0   'False
  30.       Height          =   195
  31.       Left            =   2100
  32.       TabIndex        =   0
  33.       Top             =   2400
  34.       Width           =   480
  35.    End
  36. Option Explicit
  37. Sub Form_Load ()
  38.  ' Get rid of the forms Caption so title bar does not display:
  39.       Me.Caption = ""
  40.       ' Give the form and label a light yellow background:
  41.       Me.BackColor = &H80FFFF
  42.       Label1.BackColor = &H80FFFF
  43.       ' Inset label by 1 pixel:
  44.       Label1.Left = 1 * Screen.TwipsPerPixelX
  45.       Label1.Top = 0
  46. End Sub
  47.